Skip to content

Instantly share code, notes, and snippets.

@pazteddy
pazteddy / Instalaciones-DotNET.md
Last active January 30, 2026 20:53
Instalaciones recomendadas para el curso .NET Backend: .NET Core, SQL Server y seguridad JWT
@steipete
steipete / agent.md
Created October 14, 2025 14:41
Agent rules for git
  • Delete unused or obsolete files when your changes make them irrelevant (refactors, feature removals, etc.), and revert files only when the change is yours or explicitly requested. If a git operation leaves you unsure about other agents' in-flight work, stop and coordinate instead of deleting.
  • Before attempting to delete a file to resolve a local type/lint failure, stop and ask the user. Other agents are often editing adjacent files; deleting their work to silence an error is never acceptable without explicit approval.
  • NEVER edit .env or any environment variable files—only the user may change them.
  • Coordinate with other agents before removing their in-progress edits—don't revert or delete work you didn't author unless everyone agrees.
  • Moving/renaming and restoring files is allowed.
  • ABSOLUTELY NEVER run destructive git operations (e.g., git reset --hard, rm, git checkout/git restore to an older commit) unless the user gives an explicit, written instruction in this conversation. Treat t
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active January 30, 2026 20:52
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@vhodiak
vhodiak / codereview-flutter.md
Created October 31, 2022 15:28
Codereview checklist for flutter developers

The following aspects are considered to ensure good quality and high-performance deliverables

  1. Requirements
  • 1.1 Task requirements have been met
  1. Compiler
  • 2.1 Code compiles without any warnings
  • 2.2 Static analysis passes
  • 2.3 Favorite IDE shows 0 errors, warnings
  • 2.4 No spelling mistakes, except for specific project names or 3rd party packages
  1. Naming conventions
  • 3.1 Classes, enums, typedefs, and extensions name are in UpperCamelCase
@satria-fextha
satria-fextha / install_wifi_drrivers.sh
Created February 10, 2025 21:10 — forked from miguelmota/install_wifi_drrivers.sh
Linux Fedora install Macbook Pro broadcom wifi drivers
sudo dnf install -y http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install -y akmods "kernel-devel-uname-r == $(uname -r)"
sudo dnf install -y broadcom-wl
sudo akmods
sudo reboot
@repsejnworb
repsejnworb / CrossOverLicence.sh
Last active January 30, 2026 20:49
unlimited CrossOver 24 trial (MacOS)
#!/bin/sh
# Variables
FOLDER_NAME="CrossOverLicence"
PLIST_NAME="com.codeweavers.CrossOver.license.plist"
BOTTLES_PATH="$HOME/Library/Application Support/CrossOver/Bottles"
SCRIPT_URL="https://gist.githubusercontent.com/repsejnworb/84d3e0852cf90ef40edf7e9c060f193b/raw/CrossOverLicence.sh?token=$(date +%s)"
TOTAL_STEPS=3
STEP=0
@dodying
dodying / chromium-command-line-switches.md
Last active January 30, 2026 20:48
[List of Chromium Command Line Switches] https://peter.sh/experiments/chromium-command-line-switches/ #chrome #lookup

There are lots of command lines which can be used with the Google Chrome browser. Some change behavior of features, others are for debugging or experimenting. This page lists the available switches including their conditions and descriptions. Last automated update occurred on 2018-10-20.

Condition Explanation
-- Report pseudo allocation traces. Pseudo traces are derived from currently active trace events.
--/prefetch:1 /prefetch:# arguments to use when launching various process types. It has been observed that when file reads are consistent for 3 process launches with the same /prefetch:# argument, the Windows prefetcher starts issuing reads in batch at process launch. Because reads depend on the process type, the prefetcher wouldn't be able to observe consistent reads if no /prefetch:# arguments were used. Note that the browser process has no /prefetch:# argument; as such a
@patyearone
patyearone / final-review-gist.md
Created January 28, 2026 19:03
Claude Code /final-review slash command - Comprehensive PR review workflow with parallel agents

Final Review - Comprehensive PR Review & Testing

Step 0: Determine Review Pass

Before starting, check the git history to determine if this is a follow-up review:

git log --oneline -10 | grep -i "Co-Authored-By: Claude"
@antirez
antirez / codex_skill.md
Created January 30, 2026 19:09
CLAUDE_CODEX_SKILL.md

How to Use Codex from Claude Code

Codex is an AI-powered CLI tool that can help with complex debugging, code analysis, and technical questions. When you encounter difficult problems that would benefit from a second perspective or deep analysis, use Codex.

When to Use Codex

  • Debugging subtle bugs (e.g., bitstream alignment issues, off-by-one errors)
  • Analyzing complex algorithms against specifications
  • Getting a detailed code review with specific bug identification
  • Understanding obscure file formats or protocols